* {
	margin: 0;
	padding: 0;
	font-size: 12px;
	transition: all 0.3s;
}

a {
	text-decoration: none;
}

ul,
li {
	font-style: normal;
	display: block;
}



/* 头部 */
.top {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100px;
	background: rgba(255, 255, 255, 0.88);
	z-index: 9999;
}

.top-left {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-basis: 186px;
}

.top-right {
	display: flex;
	width: 60%;
}

.top-right li {
	display: block;
	flex: 1;
	line-height: 100px;
	text-align: center;
	color: #333333;
	width: 100%;
	font-size: 16px;
}

.top-right a {
	display: block;
	color: #333333;
	width: 100%;
	font-size: 16px;
}

.nav {
	cursor: pointer;
}

.nav:hover {
	background: #0080cc !important;
	color: #FFFFFF !important;
}

.top .flexb {
	align-items: center;
}


.mobile {
	display: none;
	float: right;
	border-radius: 2px;
	cursor: pointer;
	text-align: center;
	line-height: 3px;
	box-sizing: border-box;
	transition: 0.4s ease-in-out;
}

.mobile i {
	display: block;
	margin: 0 auto;
	width: 28px;
	height: 3px;
	background: #000;
	margin-top: 5px;
	border-radius: 5px;
}

.mobile i:nth-child(1) {
	transition: 0.4s ease-in-out 0.3s;
}

.mobile i:nth-child(2) {
	transition: 0.4s ease-in-out;
}

.mobile i:nth-child(3) {
	transition: 0.4s ease-in-out 0.3s;
}

.mobile.active i:nth-child(1) {
	transform: rotate(45deg) translateY(6px) translateX(5px);
}

.mobile.active i:nth-child(2) {
	transform: translateX(40px);
	opacity: 0;
}

.mobile.active i:nth-child(3) {
	transform: rotate(-45deg) translateY(-6px) translateX(5px);
}

/* 底部 */
.footer {
	background: #333333;
	height: 270px;
}

.footer-left {
	width: 17%;
	align-items: center;
	display: flex;
	height: 270px;
}

.footer-left img {
	max-width: 186px;
}

.footer-center2 {
	width: 72%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 60px 0;
}

.footer-centertop {
	text-align: center;
	display: flex;
	border-bottom: 1px #FFFFFF solid;
	padding-bottom: 25px;
	width: 90%;
}

.footer-centertop a {
	color: #FFFFFF;
	border-right: 1px #FFFFFF solid;
	display: block;
	justify-content: center;
	flex: 1;
	text-align: center;
	font-size: 16px;
}

.footer-centerbottom {
	line-height: 40px;
	color: #FFFFFF;
	text-align: center;
	padding-top: 20px;
	width: 90%;
    display: flex;
    justify-content: space-between;
}

.footer-centerbottom div {
	font-size: 14px;
}
.footer-centerbottom .left{
text-align: left;
}
.footer-centerbottom .link{
	text-align: right;
}
.footer-centerbottom .link a{
	color: #fff;
}
.footer-right {
	width: 11%;
	align-items: center;
	display: flex;
	height: 270px;
	flex-wrap: wrap;
	color: #FFFFFF;
	justify-content: center;
}

.footer img {
	width: 100%;
}
@media screen and (max-width: 1400px) {
	.footer-centerbottom{
		display: block;
	}
	.footer-centerbottom .link{
		text-align: left;
		display: flex;
	}
	.footer-centerbottom .link dt{
		margin-right: 10px;
	}

}

@media screen and (max-width: 1000px) {
	.mobile {
		display: block;
	}
	.top{
		background-color: #fff;
	}
	.top-right.active {
		display: block;

	}
	

	.top-right>li>a {
		line-height: 35px;
		vertical-align: top;
		transform: translateY(0);
		color: #fff;
	}

	.top-right {
		display: none;
		position: fixed;
		line-height: 35px;
		text-align: center;
		transform: translateX(-100%);
		transition: 0.5s ease-in-out;
		left: 0;
		top: 100px;
	}

	.top-right>li>a {
		font-size: 14px;
		display: block;
		height: 50px;
		line-height: 50px;
	}

	.top-right>li {
		margin-right: 0;
		transform: translateX(-200px);
		opacity: 0;
	}

	.top-right>li:nth-child(1) {
		transition: 0.4s ease-in-out 0.4s;
	}

	.top-right>li:nth-child(2) {
		transition: 0.4s ease-in-out 0.5s;
	}

	.top-right>li:nth-child(3) {
		transition: 0.4s ease-in-out 0.6s;
	}

	.top-right>li:nth-child(4) {
		transition: 0.4s ease-in-out 0.7s;
	}

	.top-right>li:nth-child(5) {
		transition: 0.4s ease-in-out 0.8s;
	}

	.top-right>li:nth-child(6) {
		transition: 0.4s ease-in-out 0.9s;
	}

	.top-right>li:nth-child(7) {
		transition: 0.4s ease-in-out 1s;
	}

	.top-right>li:nth-child(8) {
		transition: 0.4s ease-in-out 1.1s;
	}

	.top-right.active>li {
		transform: translateX(0);
		opacity: 1;
	}

	.top-right.active {
		transform: translateX(0);
		width: 100%;
		background-color: #0080cc;
		height: auto;
	}

	.top-right>li ol {
		display: none !important;
	}

	/* 底部 */
	.footer{
		height: auto;
		overflow: hidden;
	
	}
	.footer .flex{
		display: block;
	}
	.footer-left{
		height: auto;
		margin: 40px auto 0;
		width: 50%;
	}
	.footer-centertop{
		display: none;
	}
	.footer-center2{
		padding: 0;
		width: 100%;
	}
	.footer img{
		display: block;
		margin: 0 auto;
	}
	.footer-right{
		width: 100%;
	}
}

@media screen and (max-width: 900px) {
	.contact-li{
		width: 100%;
	}
	.contact .flexb{
		display: block;
	}
}